home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / powerb5.zip / WWDEL.TXT < prev    next >
Text File  |  1993-06-01  |  134b  |  7 lines

  1. Sub MAIN
  2. ' Delete a file from the disk
  3. Input "File to delete" ; fil$
  4. ' Erase the file
  5. If(len(fil$) > 0) Then Kill fil$
  6. End Sub
  7.